home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
cug191
/
std.h
< prev
next >
Wrap
Text File
|
1986-04-21
|
306b
|
15 lines
/*#title STD.H 03/15/86 */
#define FALSE 0
#define TRUE !FALSE
#define NUL 0
#define FOREVER while (TRUE)
#define XX 0
#define CR 0x0D
#define LF 0x0A
typedef char BOOLEAN;
typedef unsigned char BYTE;
typedef unsigned WORD;
typedef int (*FUNPTR)();